home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / com / bbs / server / hellbbs / docs / areas.hlp next >
Encoding:
Text File  |  1996-05-12  |  3.3 KB  |  98 lines

  1. System for file- and message-areas:
  2. -----------------------------------
  3.  
  4. The attributes of an area can all be combined, except A and G!
  5.  
  6.  
  7. File-areas:
  8. -----------
  9.  
  10. Info-file:    F_AREAS.BBS
  11.  
  12. Entries:    Areanumber,Areaname,Areapath,att1,att2,att3...
  13.  
  14. Attributes:
  15.  
  16. AX    ->User-level X (0-9) is needed to see the area at all (Def. 0)
  17. GX    ->Area is a user-group, level X (0-9) needed to see, excludes A!
  18. LX    ->User-level X (0-9) is needed to see the file-list of this area
  19. DX    ->User-level X (0-9) is needed to be able to download from the area
  20. UX    ->User-level Y (0-9) is needed to be able to uplaod to the area
  21. -X    ->X (0-9) is the download factor. It defines, how much a file
  22.       counts, when downloading from the area. (X*length_of_file) (Def. 1)
  23. +X    ->X (0-9) is the upload-factor. Same as -X, but for uploads!    
  24.  
  25. Example entry in F_AREAS.BBS:  
  26.  
  27.   1,Cool files,F:\cool\,A1,+2,D2,U1
  28.   | |          |        |
  29.   | |           |    A1=Attributes: See area with user-level 1
  30.   | |           |    +2=Upload factor 2 (Count uploads twice)
  31.   | |           |    D2=Allow downloads with level 2
  32.   | |           |    U3=Allow upload with level 1
  33.   | |           |
  34.   | |           This is the path, where all files in this area will be put
  35.   | |
  36.   | This is the name of the area
  37.   This is the number (0-199) of the area.
  38.  
  39. Providing multiple languages in the BBS:
  40.  
  41. If you have multiple folders containing the info-files in different languages,
  42. then you don't need to write pathes and attributes in these files. Just the
  43. numbers and names of the areas will be enough, if the main-files contain the
  44. other informations.
  45.  
  46.  
  47. Explanation for the up/download factors:
  48.  
  49. Each user has some kind of account, which controls his up/downloads.
  50. This means: If he uploads a file a certain amount will be added to his
  51. account, which will then be available for download... It works like this:
  52.  
  53. upload_bytes = file_lenght * upload_factor_of_area * FACTOR
  54.  
  55. FACTOR is the individual  user-factor, which gives the possibility of
  56. individual user-handling. -> A high FACTOR means, you can download more
  57. for same amount of uploads... FACTOR can be set in the user-file. Allowed
  58. values are 0-9.9! FACTOR=10 means unlimited download fo the user.
  59.  
  60. download_bytes = file_lenght * download_factor_of_area
  61.  
  62. Of course you need at least donwload_bytes on your account to be able to
  63. make a download!
  64.  
  65.  
  66. Message-areas:
  67. --------------
  68.  
  69. Same handling ass file-areas, except there are no -/+ attributes!
  70.  
  71. Info-file:    M_AREAS.BBS
  72.  
  73. Example entry in F_AREAS.BBS:  
  74.  
  75.   1,de.comp.sys.atari.st,F:\inet\,G1,D2,U9
  76.   | |                   |        |
  77.   | |                    |      G1=user-group! See area with user-level 1
  78.   | |                 |      D1=level 1 needed to read messages
  79.   | |                    |      U9=level 9 to write (only Sysop can)
  80.   | |                    |    
  81.   | |                    |
  82.   | |                    This is the path, where the messages-file will be
  83.   | |
  84.   | This is the name of the area
  85.   This is the number (0-199) of the area.
  86.  
  87. User-groups:
  88.  
  89. A user-group (file or messages-area) will only be accessible by it's members!
  90. The Sysop can add/remove a user to an area using the function in the
  91. files-menu of the BBS!
  92.  
  93.  
  94.  
  95. Maybe this explanation is quite short, but I think it should be possible to
  96. understand it, when looking at the example files already set-up.
  97. If somebody understands this stuff and wants to write a better help-file,
  98. I would be VERY pleased!